Authentication Providers
-
A credential which can be used to log in as a Stitch user using the anonymous authentication provider.
See moreDeclaration
Swift
public struct AnonymousCredential : StitchCredential
-
A credential which can be used to log in as a Stitch user using the Custom authentication provider.
See moreDeclaration
Swift
public struct CustomCredential : StitchCredential
-
A credential which can be used to log in as a Stitch user using the Facebook authentication provider.
See moreDeclaration
Swift
public struct FacebookCredential : StitchCredential
-
A credential which can be used to log in as a Stitch user using the Google authentication provider.
See moreDeclaration
Swift
public struct GoogleCredential : StitchCredential
-
A credential which can be used to log in as a Stitch user using the Server API Key authentication provider.
See moreDeclaration
Swift
public struct ServerAPIKeyCredential : StitchCredential
-
A struct representing a user API key as returned by the Stitch server.
See moreDeclaration
Swift
public struct UserAPIKey : Decodable
-
A credential which can be used to log in as a Stitch user using the User API Key authentication provider.
See moreDeclaration
Swift
public struct UserAPIKeyCredential : StitchCredential
-
A protocol defining methods for creating, updating, and deleting the user API keys of a Stitch user.
See moreDeclaration
Swift
public protocol UserAPIKeyAuthProviderClient
-
Global factory const which can be used to create a
UserAPIKeyAuthProviderClient
with aStitchAuth
. Pass this intoStitchAuth.providerClient(fromFactory:) to get a
UserAPIKeyAuthProviderClient`.Declaration
Swift
public let userAPIKeyClientFactory: UserAPIKeyClientFactory
-
A credential which can be used to log in as a Stitch user using the username/password authentication provider.
See moreDeclaration
Swift
public struct UserPasswordCredential : StitchCredential
-
A protocol defining methods for interacting with username/password authentication provider in Stitch.
See moreDeclaration
Swift
public protocol UserPasswordAuthProviderClient
-
Global factory const which can be used to create a
UserPasswordAuthProviderClient
with aStitchAuth
. Pass this intoStitchAuth.providerClient(fromFactory:) to get a
UserPasswordAuthProviderClient`.Declaration
Swift
public let userPasswordClientFactory: UserPasswordClientFactory